home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / bisonpcb.zip / LEX.H < prev    next >
Text File  |  1987-02-03  |  2KB  |  47 lines

  1. /* Token type definitions for bison's input reader,
  2.    Copyright (C) 1984 Bob Corbett and Free Software Foundation, Inc.
  3.  
  4. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the BISON General Public License for full details.
  9.  
  10. Everyone is granted permission to copy, modify and redistribute BISON,
  11. but only under the conditions described in the BISON General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with BISON so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.  
  17.  In other words, you are welcome to use, share and improve this program.
  18.  You are forbidden to forbid anyone else to use, share and improve
  19.  what you give them.   Help stamp out software-hoarding!  */
  20.  
  21. #define    ENDFILE        0
  22. #define    IDENTIFIER    1
  23. #define    COMMA        2
  24. #define COLON        3
  25. #define    SEMICOLON    4
  26. #define    BAR        5
  27. #define LEFT_CURLY    6
  28. #define TWO_PERCENTS    7
  29. #define PERCENT_LEFT_CURLY    8
  30. #define    TOKEN        9
  31. #define    NTERM        10
  32. #define GUARD           11
  33. #define    TYPE           12
  34. #define    UNION           13
  35. #define START           14
  36. #define LEFT           15
  37. #define RIGHT           16
  38. #define NONASSOC       17
  39. #define PREC           18
  40. #define SEMANTIC_PARSER 19
  41. #define PURE_PARSER    20
  42. #define TYPENAME       21
  43. #define NUMBER           22
  44. #define    ILLEGAL           23
  45.  
  46. #define    MAXTOKEN    1024
  47.